//
// Copyright (c) 2009 All Right Reserved
//
// vl
//
// 2009-01-01
// Contains ...
using JetBrains.Annotations;
namespace LargoCommon.Music
{
/// Interval type.
public enum IntervalType {
/// Interval type.
[UsedImplicitly] Unison = 0,
/// Interval type.
Halftone = 1, //// Semitone
/// Interval type.
Second = 2, //// WholeTone
/// Interval type.
MinorThird = 3,
/// Interval type.
MajorThird = 4,
/// Interval type.
Fourth = 5,
/// Interval type.
[UsedImplicitly] Tritone = 6,
/// Interval type.
Fifth = 7,
/// Interval type.
[UsedImplicitly] MinorSixth = 8,
/// Interval type.
[UsedImplicitly] MajorSixth = 9,
/// Interval type.
[UsedImplicitly] Seventh = 10,
/// Interval type.
[UsedImplicitly] AugmentedSeventh = 11
}
}